home *** CD-ROM | disk | FTP | other *** search
/ Die Ultimative Software-P…i Collection 1996 & 1997 / Die Ultimative Software-Pakete CD-ROM fur Atari Collection 1996 & 1997.iso / g / gnu_c / crssrc16.zoo / test / puzzle15 / Makefile next >
Encoding:
Makefile  |  1989-03-21  |  262 b   |  16 lines

  1. # simple makefile for puzzle
  2. CC = mgcc
  3.  
  4. ALL = puzzle puzzle32
  5.  
  6. all: $(ALL)
  7.  
  8. puzzle:    puzzle15.c
  9.     $(CC) -o puzzle $(CFLAGS) puzzle15.c -lcurses -mshort -s
  10.  
  11. puzzle32: puzzle15.c
  12.     $(CC) -o puzzle32 $(CFLAGS) puzzle15.c -lcurses32 -s
  13.  
  14. clean:
  15.     rm -f $(ALL) *.o report
  16.